@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&family=Lato:wght@200;300&display=swap');

/* General */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f0e1;
    color: #1c1c1c;
    margin: 0;
    padding: 0;
    display: flex;
    transition: background 0.3s, color 0.3s;
}

/* Barra lateral */
.sidebar {
    width: 250px;
    background-color: #2d5f54;
    color: white;
    position: fixed;
    height: 100vh;
    padding: 20px;
    transition: width 0.4s ease-in-out;
}

.sidebar:hover {
    width: 300px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    
}

.sidebar ul li {
    padding: 15px 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 300;
    
}
/* Footer de la barra lateral */
.sidebar-footer {
    position: absolute;
    bottom: 60px;
    left: 20px;
    color: white;
    font-size: 14px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* Hace los íconos blancos */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Contenido Principal */
.main-content {
    margin-left: 250px;
    padding: 50px;
    flex-grow: 1;
}

/* Secciones */
section {
    padding: 50px;
    text-align: center;
    position: relative;
    width: 100%; /* Ocupará todo el ancho disponible */

}

/* Fondo con imagen */
.bg-overlay {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* Galería */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-grid img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* Pop-up de Menú */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    float: right;
}

.popup.show {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }

    .sidebar:hover {
        width: 250px;
    }

    .main-content {
        margin-left: 60px;
    }
}

/* Modo Oscuro */
body.dark-mode {
    background-color: #1c1c1c;
    color: #f5f0e1;
}

#dark-mode-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    background: #2d5f54;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

/* Redes Sociales */
.social-icons i {
    font-size: 24px;
    color: white;
    margin-right: 10px;
    transition: transform 0.3s;
}

.social-icons i:hover {
    transform: scale(1.2);
}

/* Galería */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-grid img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}


.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* Blog & Eventos - Estilo Polaroid */
.polaroid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    border-radius: 10px;
}

.polaroid {
    background: white;
    padding: 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease-in-out;
    width: 200px;
    text-align: center;
    font-size: 14px;
}

.polaroid:nth-child(even) {
    transform: rotate(3deg);
}

.polaroid img {
    width: 100%;
    border-radius: 5px;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0);
}

/* Reservas + Mapa */
.reservation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#reservation-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#reservation-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #2d5f54;
    border-radius: 5px;
}

#reservation-form button {
    background-color: #2d5f54;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
#reservation-form button :hover{
    background-color: #1e5335;
}



/* Menú - Imagen Polaroid + Botón */
.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.menu-info {
    text-align: left;
    max-width: 300px;
}

.btn {
    background: #2d5f54;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1e5335;
}

/* Fondo con Polaroids Borrosas */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
}
/* Footer Extenso */
.footer {
    background: #1c1c1c;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    max-width: 250px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    margin: 5px 0;
}

/* Historia - Texto Izquierda, Imagen Derecha */
.history-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.history-container p {
    max-width: 400px;
}


/* Estilo de los Botones */
.btn {
    background: #2d5f54;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1e5335;
}
/* Tamaños personalizados para Polaroids */
.history-polaroid {
    width: 450px;
}

.menu-polaroid {
    width: 400px;
}

.blog-polaroid, .event-polaroid {
    width: 400px;
}

/* Pop-up de Menú */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    float: right;
}

.popup.show {
    display: flex;
}
/* Estilo del "corcho" como un círculo verde con sombra */
.corcho {
    width: 15px; /* Tamaño pequeño para que sea sutil */
    height: 15px;
    background-color: #2d5f54; /* Verde oscuro */
    border-radius: 50%;
    position: absolute;
    top: -5px; /* Ubicación sobre la polaroid */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* Sombra para dar efecto de profundidad */
    z-index: 5;
}

/* Estilos para la Reserva */
.reservation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: row; /* Asegura que estén en la misma línea */
}

.google-map {
    width: 150%;
    height: 400px;
    filter: grayscale(1) brightness(1.2);
    border-radius: 10px;
}

.reservation-form {
    flex: 1;
    text-align: left;
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.options {
    margin: 10px 0;
}

/* Pop-up de Confirmación */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.cafe-animation {
    width: 80px;
    height: auto;
}

.popup.show {
    display: flex;
}
/* Fondo con corchos desenfocados distribuidos aleatoriamente */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 5% 10%, rgba(45, 106, 79, 0.3) 15px, transparent 30px),
        radial-gradient(circle at 50% 50%, rgba(45, 106, 79, 0.4) 15px, transparent 35px),
        radial-gradient(circle at 75% 20%, rgba(45, 106, 79, 0.3) 15px, transparent 50px),
        radial-gradient(circle at 95% 70%, rgba(45, 106, 79, 0.2) 15px, transparent 45px),
        radial-gradient(circle at 85% 90%, rgba(45, 106, 79, 0.3) 15px, transparent 30px),
        radial-gradient(circle at 40% 20%, rgba(45, 106, 79, 0.2) 15px, transparent 45px),
        radial-gradient(circle at 25% 90%, rgba(45, 106, 79, 0.3) 15px, transparent 40px);
    background-size: cover;
    filter: blur(6px);
    opacity: 1;
    z-index: -1;
}
/* Flexibilidad en el contenedor de reservas */
.reservation-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se adapten */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 450px; /* Ajustable */
    margin: auto; /* Centrado */
}

/* Hacer el formulario más adaptable */
.reservation-form {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Footer estilo carta en buzón */
.footer-mailbox {
    position: relative;
    width: 100%;
    height: 250px; /* Ajustable */
    background: url('img/mailbox.png') center/contain no-repeat; /* Imagen del buzón */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 50px;
}

/* Carta abierta */
.letter {
    width: 90%;
    max-width: 600px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transform: translateY(-30px);
}
/* Hover con línea oscura animada */
.sidebar ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.sidebar ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.sidebar ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* Efecto de desenfoque en el fondo al abrir la carta */
body.blur-active {
    filter: blur(8px);
}

/* Pop-up de la carta con z-index alto */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Mayor prioridad */
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    z-index: 10000; /* Asegurar que esté por encima */
}

/* Mapa de Google - Más ancho */
.google-map {
    width: 150%; /* Asegura que sea más grande */
    max-width: 400px; /* Ajustable */
    height: 400px;
    filter: grayscale(1) brightness(1.2);
    border-radius: 10px;
}

/* Formulario de reservas - Tamaño adecuado */
.reservation-form {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}
/* Flexibilidad en el contenedor de reservas */
.reservation-container {
    display: flex;
    flex-wrap: nowrap; /* Asegura que estén en una línea */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 750px; /* Ajustable */
    margin: auto; /* Centrado */
}
/* Formulario de reservas */
.reservation-form {
    flex: 1;
    min-width: 200px;
    height: 360px;
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Mapa de Google */
.google-map {
    width: 100%;
    max-width: 600px; /* Ajustable */
    height: 400px;
    filter: grayscale(1) brightness(1.2);
    border-radius: 10px;
}


/* ------------------ */
/* 🎬 Animación de Humo de Café */
/* ------------------ */
.cafe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.cafe-text {
    font-size: 24px;
    font-weight: bold;
    color: #2d5f54;
    margin-bottom: 20px;
}

.cafe-cup {
    position: relative;
    width: 150px;
}

.cafe-cup img {
    width: 100%;
    border-radius: 10px;
}

/* Humo animado */
.humo {
    position: absolute;
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: humoAnimado 3s infinite ease-in-out;
}

.humo:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
}

.humo:nth-child(3) {
    left: 60%;
    animation-delay: 2s;
}

@keyframes humoAnimado {
    0% {
        transform: translateX(-50%) translateY(0) scale(0.8);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) translateY(-80px) scale(1.2);
        opacity: 0;
    }
}
/* HERO con Fondo Estático - Ajustado sin problemas */
#hero {
    position: relative;
    width: 100%; /* Ocupará todo el ancho disponible */
    max-width: 1200px; /* Para que no sea demasiado grande */
    height: 100vh;
    margin: 0 auto; /* Centrado */
    padding: 0 20px; /* Ajuste de espacio para que no toque la barra */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Imagen de Fondo */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste sin deformaciones */
}

/* Contenido del Hero */
.hero-content {
    position: relative;
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 800px;
    text-align: center;
}

/* Título */
.hero-title {
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Subtítulo */
.hero-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Botón Hero */
.btn-hero {
    display: inline-block;
    background: #2d5f54;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background: #1e5335;
    transform: scale(1.05);
}
/* 🏠 Sidebar */
.sidebar {
    width: 250px;
    background: #2d5f54;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Estilos del enlace del footer para que coincida con los demás */
.sidebar ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.sidebar ul li a:hover {
    background: #1e3d2b;
}

/* 📬 Footer oculto inicialmente */
.footer-container {
    position: fixed;
    bottom: -250px; /* Se esconde al inicio */
    left: 250px; /* Ajuste para que no cubra la barra lateral */
    width: calc(100% - 250px); /* Ajuste dinámico */
    height: 250px;
    background: #1a2e24; /* Verde más oscuro */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
}

/* Mostrar el Footer */
.footer-container.visible {
    bottom: 0;
}

/* 📜 Contenido dentro del Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    text-align: center;
}

/* Información de contacto */
.footer-info, .footer-social {
    text-align: center;
}

/* Íconos Sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #c8e6c9;
}
/* 🏠 Sidebar */
.sidebar {
    width: 250px;
    background: #2d5f54;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Separa los elementos */
}

/* 🆙 Enlaces de navegación en la parte superior */
.nav-links h2 {
    text-align: center;
    margin-bottom: 20px;
}

.nav-links ul {
    list-style: none;
    padding: 0;
}

.nav-links ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.nav-links ul li a:hover {
    background: #1e3d2b;
}

/* 🔽 Footer Link en la parte inferior */
.footer-link {
    margin-top: auto;
}

.footer-link ul {
    list-style: none;
    padding: 0;
}

.footer-link ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.footer-link ul li a:hover {
    background: #1e3d2b;
}

/* 📬 Footer oculto inicialmente */
.footer-container {
    position: fixed;
    bottom: -250px; /* Se esconde al inicio */
    left: 290px; /* Ajuste para que no cubra la barra lateral */
    width: calc(100% - 300px); /* Ajuste dinámico */
    height: 250px;
    background: #1a2e24; /* Verde más oscuro */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
}

/* Mostrar el Footer */
.footer-container.visible {
    bottom: 0;
}

/* 📜 Contenido dentro del Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    text-align: center;
}

/* Información de contacto */
.footer-info, .footer-social {
    text-align: center;
}

/* Íconos Sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #c8e6c9;
}
/* 🔲 Nuevo Estilo de Botón con Solo Borde Verde */
.btn-outline {
    display: inline-block;
    color: #2d5f54; /* Verde Oscuro */
    border: 2px solid #2d5f54;
    background: transparent;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ✨ Efecto al Pasar el Mouse */
.btn-outline:hover {
    background: #2d5f54;
    color: white;
}
.hero-content.btn-outline {
    color: white
}
/* 📜 Estilo del Pop-Up */
.menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
}

/* Mostrar el Pop-Up */
.menu-popup.active {
    visibility: visible;
    opacity: 1;
}

/* 📜 Contenido de la Carta */
.menu-content {
    background: #fff;
    width: 60%;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* ❌ Botón de Cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

/* 🏷 Estilo de los Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.tab-btn {
    background: transparent;
    border: 2px solid #2d5f54;
    color: #2d5f54;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2d5f54;
    color: white;
}

/* 📜 Secciones de la Carta */
.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

/* 📜 Listas */
.menu-sections ul {
    list-style: none;
    padding: 0;
}

.menu-sections ul li {
    font-size: 18px;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

/* 📜 Pop-Up */
.menu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Mostrar el Pop-Up */
.menu-popup.active {
    visibility: visible;
    opacity: 1;
}

/* 📜 Contenido */
.menu-content {
    background: #fff;
    width: 60%;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* ❌ Botón de Cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

/* 📜 Secciones con Efecto Pergamino */
.menu-sections {
    position: relative;
    overflow: hidden;
    height: 350px;
}

/* Animación Pergamino */
.menu-section {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
}

/* Sección Activa */
.menu-section.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* 🥤 Habilitar Scroll en Bebidas */
.menu-section.scrollable {
    overflow-y: auto;
    max-height: 300px;
    padding-right: 10px;
}

/* Estilizar Scroll */
.menu-section.scrollable::-webkit-scrollbar {
    width: 6px;
}

.menu-section.scrollable::-webkit-scrollbar-thumb {
    background: #2d5f54;
    border-radius: 10px;
}
/* 📢 Notificación de Reserva */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2d5f54;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Mostrar la Notificación */
.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Ocultar la Notificación */
.hidden {
    display: none;
}
/* 🔄 Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5e0c3; /* Color crema */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Ocultar el Preloader */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ☕ Grano de Café Rodando */
.coffee-bean {
    width: 50px;
    height: 30px;
    background: #4b2e2a; /* Marrón oscuro */
    border-radius: 50%;
    position: relative;
    animation: rollingBean 2s ease-in-out infinite;
}

/* Animación del Grano Rodando */
@keyframes rollingBean {
    0% { transform: translateX(-100px) rotate(0deg); }
    50% { transform: translateX(100px) rotate(180deg); }
    100% { transform: translateX(-100px) rotate(360deg); }
}

/* ☕ Gotas de Café */
.coffee-drops {
    position: absolute;
    bottom: 100px;
    display: flex;
    gap: 15px;
}

/* Estilo de las Gotas */
.drop {
    width: 10px;
    height: 15px;
    background: #4b2e2a;
    border-radius: 50%;
    opacity: 0;
    animation: dropFall 2s infinite ease-in-out;
}

/* Animación de las Gotas Cayendo */
@keyframes dropFall {
    0% { opacity: 0; transform: translateY(-10px) scale(0.5); }
    50% { opacity: 1; transform: translateY(0px) scale(1); }
    100% { opacity: 0; transform: translateY(10px) scale(0.5); }
}

/* Gotas con tiempos diferentes */
.drop:nth-child(1) { animation-delay: 0s; }
.drop:nth-child(2) { animation-delay: 0.3s; }
.drop:nth-child(3) { animation-delay: 0.6s; }

/* 📜 Scroll Suave */
html {
    scroll-behavior: smooth;
}
@media (max-width: 768px) {
    #hero {
        height: 100vh; /* Ocupa toda la pantalla */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .hero-image img {
        width: 150%; /* Aumentar zoom */
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-content {
        position: absolute;
        z-index: 2;
        text-align: center;
        width: 80%;
        color: white;
    }
}
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0; /* Eliminar el espacio de la sidebar */
        width: 100%; /* Ocupar todo el ancho */
        text-align: center;
    }
}


/* Ajuste del Hero para que sea un fondo atractivo en todas las pantallas */
#hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover; /* Asegura que el fondo cubra bien */
}

.hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(3px); /* Agrega un sutil desenfoque */
    padding: 20px;
    border-radius: 8px;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    #hero {
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        width: 90%;
        font-size: 1.2rem;
    }
}
/* HERO GENERAL */
#hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Imagen de fondo con efecto Parallax */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Contenido centrado */
.hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(3px);
    padding: 20px;
    border-radius: 8px;
}

/* 🚀 HERO EN PANTALLAS PEQUEÑAS */
@media (max-width: 768px) {
    #hero {
        height: 100vh;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* 🌟 Barra superior para móviles */
.mobile-header {
    display: none; /* Oculto por defecto en desktop */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #2d5f54;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.cafe-name {
    font-size: 20px;
    font-weight: bold;
}

#mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    right: 50px;
}

/* 🌟 Menú desplegable en móviles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #2d5f54;
    z-index: 999;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    text-align: center;
}

.mobile-nav ul li {
    padding: 10px;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* 🌟 Mostrar barra y menú solo en móviles */
@media (max-width: 1024px) {
    .mobile-header {
        display: flex;
    }

    .sidebar {
        display: none; /* Ocultamos la sidebar en móviles */
    }
}
/* 🌟 Barra superior para móviles */
.mobile-header {
    display: none; /* Oculta por defecto en todas las pantallas */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #2d5f54;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

/* 🌟 Mostrar solo en móviles */
@media (max-width: 1024px) {
    .mobile-header {
        display: flex; /* Aparece solo en móviles */
    }
}

/* 🌟 Asegurar que en pantallas grandes desaparezca */
@media (min-width: 1025px) {
    .mobile-header {
        display: none !important;
    }
}
#ubicacion-reserva {
    background-color: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #2d5f54;
  }
  
  #ubicacion-reserva-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .map-container {
    text-align: center;
  }
  
  .ubicacion-title {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    color: #2d5f54;
  }
  





/* Solo visible en pantallas chicas */
.mobile-header {
    display: none;
    background-color: #2d5f54;
    color: white;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
  }
  
  .mobile-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    margin: 0;
  }
  
  #mobile-menu-btn {
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* Menú desplegable */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #2d5f54;
    padding: 20px 0;
    z-index: 9999;
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .mobile-nav li {
    margin: 15px 0;
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Mostrar en móvil */
  @media (max-width: 768px) {
    .mobile-header {
      display: flex;
    }
  
    aside, .cta-final {
      display: none; /* Oculta el sidebar y CTA en mobile */
    }
  
    #mobile-menu {
      display: block;
    }
  
    .main-content {
      margin: 0; /* Sin margen lateral */
      padding-top: 70px; /* Para no quedar debajo del header */
    }
  }
  














































































/* 📜 Hero con Imagen de Historia */
#hero-history {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/history-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero-history .hero-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 8px;
}

/* 📜 Secciones de Historia */
.history-content {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
}

.history-content img {
    width: 40%;
    border-radius: 8px;
}

/* 📆 Línea del Tiempo */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.timeline-item {
    background: #2d5f54;
    color: white;
    padding: 10px;
    border-radius: 8px;
    position: relative;
}

.timeline-item .year {
    font-size: 22px;
    font-weight: bold;
}

/* 💬 Testimonios */
.testimonial {
    background: #f5e0c3;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}
/* 📆 Contenedor del Timeline */
.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
    border-left: 3px solid #2d5f54;
    margin: 40px auto;
    max-width: 600px;
}

/* 📍 Elementos del Timeline */
.timeline-item {
    position: relative;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
    opacity: 0;
    transform: trancity 0.6s ease-out, transform 0.6s ease-out;
}

/* 📅 Año */
.timeline-item .year {
    font-size: 22px;
    font-weight: bold;
    color: #2d5f54;
}

/* 🔘 Puntos de la Línea */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #2d5f54;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 🎭 Animación al Hacer Scroll */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/* 📜 Hero de Historia */
#hero-history {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/history-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero-history .hero-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 8px;
}

/* 📆 Timeline con Imágenes */
.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
    border-left: 3px solid #2d5f54;
    margin: 40px auto;
    max-width: 600px;
}

/* 📍 Elementos del Timeline */
.timeline-item {
    position: relative;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 📅 Año */
.timeline-item .year {
    font-size: 22px;
    font-weight: bold;
    color: #2d5f54;
}

/* 📷 Imágenes en Timeline */
.timeline-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    margin: 10px 0;
}

/* 🎭 Animación al Hacer Scroll */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 💬 Testimonios - Carrusel */
.testimonial-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

.testimonial {
    min-width: 100%;
    text-align: center;
    background: #f5e0c3;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.5s ease-in-out;
}
/* 📜 Contenedor General alineado a la derecha */
.container {
    margin-left: 250px; /* Espacio para la barra lateral */
    padding: 40px;
}

/* 📆 Timeline alineado */
.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    max-width: 600px;
    margin-left: auto; /* Alinea a la derecha */
    padding-left: 30px;
    border-left: 3px solid #2d5f54;
}

/* 📷 Imágenes en Timeline */
.timeline-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    margin: 10px 0;
    display: block;
    margin-left: auto; /* Alinea imágenes a la derecha */
}

/* 💬 Carrusel de Testimonios alineado */
.testimonial-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
    margin-left: auto; /* Alinea el carrusel a la derecha */
}

/* 📜 Hero alineado */
#hero-history {
    position: relative;
    width: calc(100% - 250px); /* No cubre la barra lateral */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 250px;
}

/* 📜 Ajustes generales */
.timeline-item, .testimonial {
    text-align: right; /* Alinea los textos a la derecha */
}
    /* 💬 Contenedor del Carrusel */
.testimonial-wrapper {
    position: relative;
    width: calc(100% + 250px); /* ✅ Permite que pase por debajo de la barra lateral */
    overflow: hidden;
    margin-left: -250px; /* ✅ Mueve el carrusel para que inicie debajo de la barra */
}

/* 🎭 Carrusel Infinito */
.testimonial-carousel {
    display: flex;
    gap: 50px;
    animation: scrollCarousel 15s linear infinite;
    white-space: nowrap;
}

/* 📜 Cada Testimonio */
.testimonial {
    min-width: 300px;
    background: #f5e0c3;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🔄 Animación Fluida */
@keyframes scrollCarousel {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
#hero-history {
    background: none !important; /* Elimina cualquier imagen de fondo */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testimonial-wrapper {
    position: relative;
    z-index: -1; /* Asegura que no esté por encima de la barra */
}
.timeline-container p {
    color: #2d5f54; /* Verde oscuro */
    font-weight: bold;
}
/* 🌟 Frase inspiradora en lugar del Hero */
#history-quote {
    text-align: center;
    padding: 100px 20px;
}

.quote-text {
    font-size: 40px;
    font-weight: bold;
    color: #2d5f54; /* Verde oscuro */
    font-style: italic;
}

.quote-author {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}
/* 🌟 Frase inspiradora centrada en pantallas pequeñas */
@media (max-width: 768px) {
    #history-quote {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 80px 15px;
    }

    .quote-text {
        font-size: 20px;
        text-align: center;
        max-width: 90%;
    }

    .quote-author {
        font-size: 16px;
        text-align: center;
    }
}
/* 🌟 Ajustes generales para pantallas pequeñas */
@media (max-width: 768px) {
    body {
        font-size: 14px !important; /* Reducimos el tamaño de la fuente general */
    }

    /* 📌 Ajustar la frase inspiradora */
    #history-quote {
        padding: 50px 10px !important;
    }

    .quote-text {
        font-size: 40px !important;
        max-width: 100% !important;
    }

    .quote-author {
        font-size: 30px !important;
    }
    #history-quote {
        text-align: center;
        padding: 100px 20px;
        right: 130px;
    }
    /* 📆 Reducir el tamaño del timeline */
    .timeline-container {
        padding: 15px !important;
    }

    #timeline h2 {
        text-align: left;
        margin-left: -130px; /* Ajusta este valor según lo que necesites */
    }

    .timeline-item {
        width: 90% !important;
        margin: 10px auto !important;
    }

    .timeline-item img {
        width: 100% !important;
        max-width: 200px !important; /* Reducir imágenes del timeline */
    }

    .timeline-item .year {
        font-size: 16px !important;
    }

    .timeline-container p {
        font-size: 13px !important;
    }

    /* 💬 Ajustar los testimonios */
    .testimonial-wrapper {
        padding: 5px !important;
    }

    .testimonial {
        font-size: 13px !important;
        padding: 10px !important;
    }

    /* 📜 Ajustar la barra superior */
    .mobile-header {
        height: 45px !important;
        padding: 0 8px !important;
    }

    #mobile-menu-btn {
        font-size: 18px !important;
    }

    /* 🔽 Ajustar menú desplegable */
    .mobile-nav ul {
        padding: 3px !important;
    }

    .mobile-nav ul li {
        padding: 6px !important;
    }

    /* 🏠 Ajustar Sidebar (si está presente en algunas páginas) */
    .sidebar {
        width: 50px !important; /* Reducimos la sidebar en móviles */
    }

    .sidebar h2 {
        font-size: 14px !important;
    }

    .sidebar ul li a {
        font-size: 12px !important;
    }

    /* 📜 Ajustar los botones */
    .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}
/* 🌟 Reducir el tamaño de la barra en pantallas pequeñas */
@media (max-width: 768px) {
    .mobile-header {
        height: 45px !important; /* Más baja */
        padding: 0 12px !important; /* Menos espacio lateral */
    }

    .cafe-name {
        font-size: 18px !important; /* Nombre más chico */
    }

    #mobile-menu-btn {
        font-size: 22px !important; /* Ícono del menú más pequeño */
    }

    /* 🌟 Reducir el menú desplegable */
    .mobile-nav {
        top: 45px !important; /* Se ajusta a la nueva altura */
    }

    .mobile-nav ul {
        padding: 8px !important;
    }

    .mobile-nav ul li {
        padding: 10px !important;
    }

    .mobile-nav ul li a {
        font-size: 16px !important;
    }
}
/* 🌟 Ajustes globales para que todo se expanda bien en móviles */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        min-height: 100vh;
        font-size: 18px !important; /* Aumenta el tamaño general del texto */
    }

    /* 🌟 Ajustar la barra superior para que tenga mejor proporción */
    .mobile-header {
        height: 55px !important; /* Tamaño intermedio para no ser ni muy grande ni muy chica */
        padding: 0 20px !important; /* Ajustar espacio lateral */
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .cafe-name {
        font-size: 22px !important; /* Ajustar tamaño del texto */
        flex-grow: 1; /* Permite que se expanda mejor */
        text-align: center; /* Centrar el texto */
    }

    #mobile-menu-btn {
        font-size: 26px !important; /* Ajustar el tamaño del icono */
        margin-left: auto; /* Mantener alineado a la derecha */
    }

    /* 🌟 Ajustar el menú desplegable */
    .mobile-nav {
        top: 55px !important; /* Se ajusta al nuevo tamaño de la barra */
        width: 100%;
        text-align: center;
        background-color: #2d5f54;
    }

    .mobile-nav ul {
        padding: 10px 0 !important;
    }

    .mobile-nav ul li {
        padding: 12px !important;
    }

    .mobile-nav ul li a {
        font-size: 20px !important; /* Asegurar que los enlaces sean legibles */
        display: block;
        width: 100%;
    }

    /* 🌟 Asegurar que el contenido principal se expanda bien */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        text-align: center; /* Alinear todo al centro */
    }

    /* 🌟 Ajustar el tamaño del timeline */
    .timeline-container {
        width: 100%;
        padding: 20px;
        right: 180px;
    }

    .timeline-item {
        width: 100%;
        max-width: 95%;
        margin: 20px auto;
    }

    .timeline-item img {
        width: 100%;
        max-width: 320px !important;
    }

    .timeline-item .year {
        font-size: 22px !important;
    }

    .timeline-container p {
        font-size: 18px !important;
    }

    /* 🌟 Ajustar los testimonios */
    .testimonial-wrapper {
        padding: 20px;
    }

    .testimonial {
        font-size: 18px !important;
        padding: 20px;
        width: 90%;
        margin: auto;
    }

    /* 🌟 Ajustar botones */
    .btn {
        padding: 12px 20px;
        font-size: 20px !important;
    }
    #testimonials {
        text-align: center;
        margin-left: -300px;
    }
}
/* Ajustar testimonios para que se vean completos */
.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Permite desplazamiento horizontal */
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.testimonial {
    flex: 0 0 90%;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    scroll-snap-align: center;
}

.stars {
    color: gold;
    font-size: 18px;
    margin-top: 5px;
}
/* 🔥 Alinear testimonios a la izquierda y hacerlos más grandes */
.testimonial-container {
    display: flex;
    flex-direction: column; /* Los apila en fila india */
    align-items: flex-start; /* Alineados a la izquierda */
    gap: 20px;
    padding-left: 20px; /* Ajusta para alinear mejor */
}

/* 📌 Estilos de cada testimonio */
.testimonial {
    width: 80%; /* Más grandes */
    max-width: 500px; /* Limita el ancho para buena estética */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

/* ⭐ Estilo de las estrellas */
.stars {
    color: gold;
    font-size: 20px;
    margin-top: 5px;
}
/* 🔥 Contenedor del carrusel */
.testimonial-container {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

/* 🔄 Carrusel fluido al estilo Apple */
.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 15s linear infinite;
}

/* 📌 Estilos de cada testimonio */
.testimonial {
    flex: 0 0 auto;
    width: 80%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

/* ⭐ Estilo de las estrellas */
.stars {
    color: gold;
    font-size: 20px;
    margin-top: 5px;
}

/* 🎬 Animación del carrusel */
@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* 🔥 Contenedor del carrusel */
.testimonial-container {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

/* 🔄 Carrusel fluido al estilo Apple */
.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 15s linear infinite;
}

/* 📌 Estilos de cada testimonio */
.testimonial {
    flex: 0 0 auto;
    width: 80%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

/* ⭐ Estilo de las estrellas */
.stars {
    color: gold;
    font-size: 20px;
    margin-top: 5px;
}

/* 🎬 Animación del carrusel */
@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 🌟 Resaltar la sección activa */
.mobile-nav ul li a.active {
    color: #FFD700; /* Dorado */
    font-weight: bold;
}
/* 🌟 Estilos para los pop-ups */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
/* 🌟 Pop-ups generales */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* 🌟 Contenido del Pop-up */
.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

/* ❌ Botón "X" */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.close-btn:hover {
    color: red;
}
/* 🌟 Estilos del Formulario de Reserva */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.reservation-form label {
    font-weight: bold;
    color: #2d5f54; /* Verde oscuro */
    margin-top: 5px;
}

.reservation-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.reservation-form input:focus {
    border-color: #2d5f54;
    outline: none;
    box-shadow: 0 0 5px rgba(45, 106, 79, 0.5);
}

/* 🌟 Botón de Reservar */
.btn-reservar {
    background: #2d5f54;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-reservar:hover {
    background: #245b3f;
    transform: scale(1.05);
}
/* 📖 Estilos del Blog */
#blog, #eventos {
    padding: 40px;
    text-align: center;
}

.blog-container, .eventos-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 🔹 Tarjetas de Blog */
.blog-card, .evento-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: left;
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
}

.blog-card h3, .evento-card h3 {
    font-size: 18px;
    margin-top: 10px;
}

.blog-card p, .evento-card p {
    font-size: 14px;
    color: #ffffff;
}

.blog-card a, .evento-card a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.blog-card a:hover, .evento-card a:hover {
    text-decoration: underline;
}

/* 🎉 Tarjetas de Eventos */
.evento-card {
    background: #2d5f54;
    color: white;
    text-align: center;
}

.evento-card a {
    color: #FFD700;
}
/* 🌟 Pop-ups para Blog y Eventos */
#blog-popup, #event-popup .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.close-btn:hover {
    color: red;
}

.blog-form, .event-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.blog-form label, .event-form label {
    font-weight: bold;
    color: #2d5f54;
}

.blog-form input, .event-form input, .event-form select, .blog-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.btn-submit {
    background: #2d5f54;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #245b3f;
    transform: scale(1.05);
}
/* 🌟 Sección de Contribución */
#contribute {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f5f0e1;
    border-radius: 10px;
}

.contribute-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contribute-buttons button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#add-blog-btn {
    background: #2d5f54;
    color: white;
}

#reserve-event-btn {
    background: #FFD700;
    color: black;
}

#add-blog-btn:hover, #reserve-event-btn:hover {
    transform: scale(1.05);
}
/* 📖 Ajuste del Blog y Eventos en Desktop */
@media (min-width: 1025px) {
    #blog, #eventos {
        padding-left: 350px; /* Mueve el contenido a la derecha */
        text-align: left;
    }

    .blog-container, .eventos-container {
        justify-content: flex-start;
    }
}
/* 🌟 Sección de Blog y Eventos en horizontal */
#blog-eventos {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-left: 350px; /* Asegura espacio con la sidebar */
    padding-top: 40px;
}

/* 📖 Estilos generales para ambas secciones */
.blog-section, .eventos-section {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 🔹 Tarjetas del Blog */
.blog-container, .eventos-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.blog-card, .evento-card {
    background: #436857;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: left;
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
}

/* 📌 Botones de acción */
.blog-section button, .eventos-section button {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#add-blog-btn {
    background: #2d5f54;
    color: white;
}

#reserve-event-btn {
    background: #FFD700;
    color: black;
}

#add-blog-btn:hover, #reserve-event-btn:hover {
    transform: scale(1.05);
}

/* 📱 Ajustes para móviles */
@media (max-width: 1024px) {
    #blog-eventos {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* 🌟 Notificación de Confirmación */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2d5f54;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 3s;
}

/* 🎬 Animación de entrada y salida */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}
/* 🌟 Ajustes en el Formulario del Blog */
.blog-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.blog-form label {
    font-weight: bold;
    color: #2d5f54;
}

.blog-form input, .blog-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.blog-form input:focus, .blog-form textarea:focus {
    border-color: #2d5f54;
    outline: none;
    box-shadow: 0 0 5px rgba(45, 106, 79, 0.5);
}

/* 📍 Contenedor de la sección */
#ubicacion-reserva {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* 🌍 Google Maps */
.map-container {
    flex: 1;
    height: 400px;
}

/* 🎟️ Formulario con el mismo tamaño del mapa */
.reserva-container {
    flex: 1;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #2d5f54;
    transition: transform 0.3s ease-in-out;
}

.reserva-container:hover {
    transform: scale(1.02);
}

/* 📝 Estilos del formulario */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 8%;
}

/* 🎨 Etiquetas */
.reservation-form label {
    font-weight: bold;
    color: #2d5f54;
    font-size: 16px;
    text-align: left;
}

/* 🔲 Campos de entrada */
.reservation-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    background: #f9f9f9;
}

.reservation-form input:focus {
    border-color: #2d5f54;
    outline: none;
    box-shadow: 0 0 5px rgba(45, 106, 79, 0.5);
}

/* 🎟️ Botón de Reservar */
.btn-reservar {
    background: #2d5f54;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.btn-reservar:hover {
    background: #245b3f;
    transform: scale(1.05);
}

/* 📱 En móviles, el mapa debe estar primero y el formulario debajo */
@media (max-width: 768px) {
    #ubicacion-reserva {
        flex-direction: column;
    }

    .map-container,
    .reserva-container {
        width: 100%;
        height: 350px;
    }
}
/* 🔔 Notificación de confirmación */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2d5f54;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 3s;
}

/* 🎬 Animación de entrada y salida */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}
/* 📍 Ajustar la Sección de Ubicación y Reserva */
#ubicacion-reserva {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap; /* Para evitar que se rompa en pantallas pequeñas */
}

/* 🌍 Google Maps */
.map-container {
    flex: 1;
    min-width: 150px;
    height: 200px;
}

/* 🎟️ Formulario con el mismo tamaño del mapa */
.reserva-container {
    flex: 1;
    min-width: 150px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #2d5f54;
    transition: transform 0.3s ease-in-out;
}

/* 📱 Para pantallas más pequeñas */
@media (max-width: 768px) {
    #ubicacion-reserva {
        flex-direction: column;
    }

    .map-container,
    .reserva-container {
        width: 100%;
        height: 350px;
    }
}
/* 📍 Nuevo contenedor para el mapa y el formulario */
#ubicacion-reserva-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1000px; /* Para evitar que se expanda demasiado en pantallas grandes */
    margin: auto; /* Centrarlo en la página */
}

/* 🌍 Google Maps */
.map-container {
    flex: 1;
    min-width: 350px;
    height: 400px;
}

/* 🎟️ Formulario con el mismo tamaño que el mapa */
.reserva-container {
    flex: 1;
    min-width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #2d5f54;
    transition: transform 0.3s ease-in-out;
}

.reserva-container:hover {
    transform: scale(1.02);
}

/* 📱 En móviles, el mapa debe estar primero y el formulario debajo */
@media (max-width: 768px) {
    #ubicacion-reserva-wrapper {
        flex-direction: column;
    }

    .map-container,
    .reserva-container {
        width: 100%;
        height: 350px;
    }
}
.historia-section {
    background-color: #2d5f54; /* Verde Mengano */
    color: white;
    padding: 60px 20px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.historia-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.historia-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.6;
}
.sidebar-logo {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .sidebar-logo img {
    width: 200px;
    height: auto;
  }
  /* Fondo general de la sección */
.historia-section {
    background-color: #2d5f54;
    color: white;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

/* Cuadro central flotante */
.historia-cuadro {
    background-color: white;
    color: #2d5f54;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Título */
.historia-cuadro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Texto */
.historia-cuadro p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}


.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.caption {
    text-align: center;
    font-size: 0.9em;
    margin-top: 8px;
    color: #2d5f54;
    font-weight: bold;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.polaroid-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.polaroid:hover {
    transform: scale(1.03);
}

.polaroid img {
    width: 100%;
    border-radius: 4px;
}

.caption {
    text-align: center;
    font-size: 0.85em;
    margin-top: 8px;
    color: #2d5f54;
    font-weight: 600;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.sidebar-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .sidebar-logo img {
    width: 250px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  /* Para títulos */
h1, h2, .titulo-logo {
    font-family: 'Cinzel', serif;
  }
  .contact-btn {
    background-color: #2d5f54;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 20px;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #244b44;
  }
  
  /* Modal fondo */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
  }
  
  /* Contenido del modal */
  .modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #2d5f54;
  }
  
  .close {
    float: right;
    font-size: 1.5em;
    cursor: pointer;
    color: #2d5f54;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
  }
  .sidebar-contact-btn {
    background-color: #2d5f54;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  .sidebar-contact-btn:hover {
    background-color: #244b44;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999; /* subimos esto */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
  }
  .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    z-index: 10000;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #2d5f54;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }
  
  .modal-content h3 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .modal-content p {
    margin-bottom: 20px;
    font-size: 1em;
  }
  
  .whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .close {
    float: right;
    font-size: 1.5em;
    cursor: pointer;
  }
  .cta-final {
    background-color: #2d5f54;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .cta-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .cta-final h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
  }
  
  .cta-final p {
    font-size: 1.1em;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .info-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .maps-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  
  .whatsapp-cta {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
  }
  
  .whatsapp-cta:hover {
    background-color: #1ca94e;
  }
  .cta-final {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 260px; /* o lo que estés usando */
    background-color: #2d5f54;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 999;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  }
  .cta-final {
    position: sticky;
    top: 0;
  }
  #ubicacion-reserva {
    background-color: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #2d5f54;
  }
  
  #ubicacion-reserva-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .map-container {
    flex: 1 1 400px;
    min-width: 300px;
  }
  
  .reserva-container {
    flex: 1 1 400px;
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  
  .reserva-container h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    color: #2d5f54;
    text-align: center;
  }
  
  .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .reservation-form label {
    font-size: 0.95em;
    font-weight: 600;
  }
  
  .reservation-form input {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .btn-reservar {
    background-color: #2d5f54;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn-reservar:hover {
    background-color: #244b44;
  }
  


/* Default: visible como footer */
.cta-final {
    background-color: #2d5f54;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
/* Versión default (escritorio): vertical */
.cta-final {
    background-color: #2d5f54;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  /* ESTILO EN MOBILE: horizontal abajo */
  @media (max-width: 768px) {
    .cta-final {
      position: static;
      width: 100%;
      background-color: #2d5f54;
      color: white;
      padding: 30px 20px;
      box-shadow: none;
      display: none; /* Oculto por defecto en desktop */
    }
  
    .cta-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
  
    .info-grid {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      text-align: center;
    }
  
    .info-box {
      flex: 1 1 45%;
    }
  
    .whatsapp-cta {
      margin-top: 20px;
    }
  }
  
  .cta-final::before {
    content: "";
    display: block;
    height: 2px;
    width: 60px;
    background-color: white;
    margin: 0 auto 20px;
    opacity: 0.2;
  }
  

  .footer-mobile {
    background-color: #2d5f54;
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: none; /* Oculto por defecto */
  }
  
  .footer-mobile .footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
  }
  
  .footer-info a {
    color: white;
    text-decoration: underline;
  }
  
  .whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Mostrar solo en mobile */
  @media (max-width: 768px) {
    .footer-mobile {
      display: block;
    }
  }
  .mobile-header {
    display: flex;
    background-color: #2d5f54;
    color: white;
    padding: 18px 24px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-header h1 {
    font-size: 1.7em;
  }
  @media (max-width: 768px) {
    .historia-cuadro {
      padding: 30px 20px;
      margin: 40px 20px;
      border-radius: 14px;
    }
  
    .historia-cuadro h2 {
      font-size: 1.8em;
    }
  
    .historia-cuadro p {
      font-size: 1em;
      line-height: 1.6;
    }
  
    .polaroid-grid {
      flex-direction: column;
      align-items: center;
      gap: 25px;
      margin-top: 30px;
    }
  
    .polaroid {
      width: 80%;
      max-width: 280px;
    }
  }
  .whatsapp-float {
    display: none; /* visible solo en mobile */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 0.95em;
  }
  
  @media (max-width: 768px) {
    .whatsapp-float {
      display: inline-block;
    }
  }
  @media (max-width: 768px) {
    #hero {
      position: relative;
      height: 90vh;
      overflow: hidden;
    }
  
    .hero-bg {
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: 0;
    }
  
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      text-align: center;
      color: white;
      background: rgba(0, 0, 0, 0.35);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
    .hero-title {
      font-size: 2.2em;
      font-family: 'Cinzel', serif;
      margin-bottom: 10px;
    }
  
    .hero-subtitle {
      font-size: 1em;
      margin-bottom: 25px;
      font-family: 'Montserrat', sans-serif;
    }
  
    .btn {
      padding: 12px 24px;
      font-size: 0.95em;
      border-radius: 25px;
      background-color: #2d5f54;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
  }
  @media (max-width: 768px) {
    #hero {
      position: relative;
      width: 90vw;
      height: 100vh;
      overflow: hidden;
    }
  
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: 0;
    }
  
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      text-align: center;
      color: rgb(229, 223, 223);
      background: rgba(0, 0, 0, 0.35);
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
    .hero-title {
      font-size: 2.2em;
      font-family: 'Cinzel', serif;
      margin-bottom: 10px;
    }
  
    .hero-subtitle {
      font-size: 1em;
      margin-bottom: 25px;
      font-family: 'Montserrat', sans-serif;
    }
  
    .btn {
      padding: 12px 24px;
      font-size: 0.95em;
      border-radius: 25px;
      background-color: #2d5f54;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    
  }
 
  @media (max-width: 768px) {
    body, html {
      padding: 0;
      margin: 0;
      text-align: center;
      font-size: 16px;
    }
  
    .main-content {
      padding: 10px;
      margin: 0 auto;
      max-width: 100%;
      box-sizing: border-box;
    }
  
    section, .historia-cuadro, .menu-container, .map-container, .reserva-container {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      height: auto;
      max-width: 100%;
      box-sizing: border-box;
    }
  
    img {
      max-width: 100%;
      height: auto;
    }
  
    .btn, .btn-outline, .whatsapp-btn, .btn-reservar {
      width: 100%;
      max-width: 300px;
      margin: 10px auto;
      display: block;
    }
    
  }
  @media (max-width: 768px) {
    #hero {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
  
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
  
    .hero-content {
      position: relative;
      z-index: 1;
      background: rgba(0, 0, 0, 0.3);
      padding: 30px 20px;
      border-radius: 15px;
      margin: 0 20px;
      max-width: 700px;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
    }
  }
  @media (max-width: 768px) {
    #ubicacion-reserva {
      padding: 50px 20px;
      background-color: #f9f9f9;
    }
  
    #ubicacion-reserva-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 700px;
      margin: 0 auto;
      box-sizing: border-box;
    }
  
    .map-container {
      width: 100%;
      max-width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
  
    .map-container iframe {
      width: 100%;
      height: 300px;
      border-radius: 10px;
    }
  
    .ubicacion-title {
      font-size: 1.6em;
      margin-bottom: 15px;
      font-family: 'Cinzel', serif;
      color: #2d5f54;
      text-align: center;
      
    }
      
  }
  .mobile-nav {
    max-height: 0;
    overflow: hidden;
    background: #2d5f54;
    transition: max-height 0.4s ease-in-out;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  
  /* Clase activa al abrir */
  .mobile-nav.open {
    max-height: 300px; /* ajustá si tenés más links */
  }
  #ubicacion-reserva {
    background-color: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #2d5f54;
    text-align: center;
  }
  
  #ubicacion-reserva-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .ubicacion-title {
    font-size: 2em;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
  }
  
  .map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    display: block;
  }
  
  /* En mobile, ajuste suave */
  @media (max-width: 768px) {
    #ubicacion-reserva {
      padding: 60px 10px;
    }
  
    .ubicacion-title {
      font-size: 1.5em;
    }
  
    .map-container iframe {
      height: 300px;
    }
  }
  .map-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
  }
  
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
  }
  
  /* Mobile ajustes */
  @media (max-width: 768px) {
    .ubicacion-title {
      font-size: 1.6em;
    }
  
    .map-wrapper {
      padding: 0 10px;
    }

  }
  .footer-derecha {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    background-color: #2d5f54;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer-derecha.activo {
    transform: translateX(0%);
  }
  
  .footer-derecha .cerrar-footer {
    position: absolute;
    top: 10px;
    left: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
  }
  
  .footer-contenido h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .footer-contenido p,
  .footer-contenido a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
  }
  
  .footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .footer-social .social-icons a i {
    font-size: 18px;
  }
  
  .footer-extra {
    font-size: 13px;
    margin-top: 30px;
    text-align: left;
  }
  
  .footer-extra a {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .oculto {
    display: none;
  }
  .footer-contenido p,
.footer-contenido a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.footer-contenido p::before,
.footer-contenido a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.footer-social .social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.footer-social .social-icons img:hover {
  transform: scale(1.1);
}
.hero-parallax {
    position: relative;
    background-image: url('/tizi/img/mengano/entrance.png'); /* tu imagen de fondo */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
    
  }
  
  .hero-content {
    background-color: rgba(0, 0, 0, 0.4); /* oscurece un poco para mejorar legibilidad */
    padding: 40px;
    border-radius: 10px;
    
  }
  @media (min-width: 769px) {
    .nuevo-header-mobile {
        display: none;
    }
    .nuevo-menu-desplegable {
        display: none;
    }
    .nuevo-footer-lateral {
        display: none;
    }
}
  @media (max-width: 768px) {
    /* NUEVO HEADER MOBILE */
    .nuevo-header-mobile {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #2d5f54;
      color: white;
      padding: 12px 20px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
  
    .nuevo-nombre-cafe {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin: 0;
    }
  
    #nuevo-boton-menu {
      background: none;
      border: 0;
      color: white;
      font-size: 26px;
      cursor: pointer;
      margin-right: 30px; /* Empuja el botón hacia la izquierda */    
    }
  
    /* NUEVO MENÚ DESPLEGABLE */
    .nuevo-menu-desplegable {
      display: none;
      flex-direction: column;
      background-color: #1f413a;
      position: fixed;
      top: 55px;
      left: 0;
      width: 100%;
      z-index: 999;
    }
  
    .nuevo-menu-desplegable ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
  
    .nuevo-menu-desplegable li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 100px;
    }
  
    .nuevo-menu-desplegable a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 14px 20px;
    }
  
    /* NUEVO FOOTER LATERAL */
    .nuevo-footer-lateral {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: 0;
      background-color: #2d5f54;
      width: 100%;
      height: 100vh;
      z-index: 2000;
      padding: 30px 20px;
      overflow-y: auto;
      animation: slideInRight 0.3s ease forwards;
    }
  
    .nuevo-footer-lateral.activo {
      display: flex;
    }
  
    .nuevo-cerrar-footer {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
    }
  
    .nuevo-footer-info h3,
    .nuevo-footer-social h3 {
      color: #ffffff;
      border-left: 5px solid #ffffff;
      padding-left: 10px;
      margin-top: 30px;
      margin-bottom: 10px;
    }
  
    .nuevo-footer-info p,
    .nuevo-footer-legal a,
    .nuevo-diseñado {
      color: #ffffff;
      font-size: 14px;
      margin: 3px 0;
    }
  
    .nuevo-social-icons {
      display: flex;
      gap: 14px;
      margin-top: 10px;
    }
  
    .nuevo-social-icons img {
      width:100%;
      height: 24px;
      padding-left: 90px;
    }
  
    .nuevo-footer-legal {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
  
    .nuevo-diseñado {
      font-style: italic;
      font-size: 12px;
      color: #ffffff;
      margin-top: 8px;
    }
  
    @keyframes slideInRight {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(0);
      }
    }
  }
  